{% extends "global/Page.html" %} {% load otree static %} {% block title %} Stage 2: Leader decision 3 {% endblock %} {% block content %}

In each decision you will decide how to divide the total amount generated for the charity between a "risky option" and a "safe option". The amount you put in the safe option remains as it is. A coin will be flipped by the computer for each leader to determine the return from the risky option.

  • If it comes up heads, the amount allocated to the risky option will be multiplied by zero.
  • If it comes up tails, the amount allocated to the risky option will be multiplied by x = 1.5, 2 and 2.5, respectively, in each of the three decisions.

  • If you are selected as leader, one of the three decisions you make will be randomly selected to determine the charity's earnings.



    When x = {% if player.random_num_x == 1 %} 2.5, {% elif player.random_num_x == 2 %} 2, {% else %} 1.5, {% endif %} I wish to allocate the charity's earnings as follows:

    {% formfields %}
    {% next_button %} {% endblock %}